About This File
Overview
A super simple API for Spectator Crowds Ultra Edition (SCUE) that gives mod authors the ability to start crowds for specific Sexlab scenes. ESL-flagged.
Â
For users, this mod lets you get crowds for select scenes instead of having NPCs barge in to every scene every time. If you use SCUE and want spectators for every scene, you don't need this mod. This mod will disable spectators on game load.
Â
Requirements
Installation
- Install as you would any other mod, preferably with a mod manager
For Modders
Â
CC is based on mod events which means you don't need to create any hard dependencies or handle soft dependency checking manually.
Â
Start up a crowd:
Â
int handle = ModEvent.Create("CC_StartCrowd")
if (handle)
ModEvent.PushInt(handle, tid) ; tid = thread id of the scene you want the crowd for
ModEvent.Send(handle)
endIf
Â
The crowd will disperse on its own when the SL scene ends.
Â
Future Plans
- Nothing for now, open to suggestions/ideas
Â
Edited by ponzipyramid